62573f
@@ -59,9 +59,9 @@
public final class GenericFileConverter {
     @Converter
     public static String convertToString(GenericFile<?> file, Exchange exchange) {
         if (exchange != null) {
-            return exchange.getContext().getTypeConverter().convertTo(String.class, file.getBody());
+            return exchange.getContext().getTypeConverter().convertTo(String.class, exchange, file.getBody());
         } else {
-            // should revert to fallback converter if we dont have an exchange 
+            // should revert to fallback converter if we don't have an exchange
             return null;
         }
     }
